home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / dos / communic / pcmail / main / snapshot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  955 b   |  77 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    snapshot 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    keep overview of the mail directory
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    mail
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    #include "snapshot.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /* .nf
  26.  
  27.  
  28.  
  29.  /* Storage for one message entry in the snapshot table */
  30.  
  31.  
  32.  
  33. typedef struct {
  34.  
  35.     unsigned short msgno;        /* message sequence number */
  36.  
  37.     char    prefix;            /* message name prefix */
  38.  
  39. } SNAP_SHOT;
  40.  
  41.  
  42.  
  43. /* access functions */
  44.  
  45.  
  46.  
  47. public void snap_junk();        /* junk snapshot table */
  48.  
  49. public SNAP_SHOT *snap_shot();        /* make sure shapshot exists */
  50.  
  51.  
  52.  
  53. /* AUTHOR(S)
  54.  
  55. /*      W.Z. Venema
  56.  
  57. /*      Eindhoven University of Technology
  58.  
  59. /*      Department of Mathematics and Computer Science
  60.  
  61. /*      Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  62.  
  63. /* CREATION DATE
  64.  
  65. /*    Sun Dec 17 19:51:55 MET 1989
  66.  
  67. /* LAST MODIFICATION
  68.  
  69. /*    90/01/22 13:02:39
  70.  
  71. /* VERSION/RELEASE
  72.  
  73. /*    2.1
  74.  
  75. /*--*/
  76.  
  77.